home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Online / CIM / is / updateExe < prev   
Encoding:
Text File  |  1998-12-19  |  722 b   |  56 lines

  1. ;
  2. ; CIM's Installer Script.
  3. ; $VER: V0.42 (04.02.1998)
  4. ; Written by Jan-Erik Tervo
  5. ;
  6.  
  7. (ONERROR
  8.       (CLEANUP)
  9.         )
  10.  
  11. (SET @default-dest "CIM:bin/")
  12.  
  13.  
  14.  
  15. ; ENGLISH STRINGS
  16.  
  17. (SET #alku_str
  18.      (cat "\nThis script will update only the executable at CIM:bin/\n\n")
  19.     )
  20.  
  21. (SET #str-installing-exe
  22.      (cat "\n\nInstalling...")
  23.  
  24.     )
  25.  
  26.  
  27.  
  28. (MESSAGE #alku_str)
  29.  
  30. (complete 0)
  31.  
  32.  
  33. (SET CIMdirBin "CIM:bin/")
  34. (SET CIMdir "CIM:")
  35. (SET CIMdirname (TACKON CIMdir "CIM"))
  36. (SET @default-dest CIMdir)
  37.  
  38.  
  39. (complete 50)
  40.  
  41. (copyfiles
  42.         (source "stuff/bin/")
  43.         (pattern "#?")
  44.         (dest CIMdirBin)
  45.         (prompt #str-installing-exe)
  46.         )
  47.  
  48. (run "protect CIM:bin/cim rwed")
  49.  
  50. (complete 100)
  51.  
  52. ; end of installation
  53.  
  54. (exit)
  55.  
  56.